home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00042_SimpleAnim.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  3.0 KB  |  135 lines

  1. --
  2. -- SimpleAnim
  3. --
  4.  
  5. property ancestor
  6. property simpleDelay
  7.  
  8.  
  9. on new me
  10.   -- set constants:
  11.   set simpleDelay = 7
  12.   
  13.   -- initialize the ancestor:
  14.   set ancestor = new (script "SpriteTools")
  15.   
  16.   return me
  17. end
  18.  
  19.  
  20. -- clear out all of my stuff
  21.  
  22. on destruct me
  23.   -- destruct my chain
  24.   if objectP (ancestor) then destruct (ancestor)
  25.   set ancestor = 0
  26. end
  27.  
  28.  
  29. -- this will animate a given sprite, based on its position in the cast
  30. -- it only animates forward (if you wanted to animate from member 12 [in sprite 10]
  31. -- to member 20, you would say basicSpriteAnim(gUI, 10, 8)
  32. on basicSpriteAnim me, spr, howMany
  33.   set oldMember = 0
  34.   set oldPuppet = 0
  35.   
  36.   -- record everything
  37.   set oldPuppet = the puppet of sprite spr
  38.   set oldMember = the castNum of sprite spr
  39.   
  40.   -- puppet if we must
  41.   if not(oldPuppet) then
  42.     puppetSprite spr, TRUE
  43.   end if
  44.   
  45.   -- now we animate
  46.   repeat with x = 1 to howMany
  47.     set the castNum of sprite spr = (oldMember + x)
  48.     updateStage
  49.     wait(simpleDelay)
  50.   end repeat
  51.   
  52.   -- now we are done animating
  53.   if oldPuppet then
  54.     set the castNum of sprite spr = oldMember
  55.   else
  56.     puppetSprite spr, FALSE
  57.   end if
  58.   
  59.   unloadCast (me)
  60.   return 1
  61. end
  62.  
  63.  
  64. -- this will animate a given sprite, based on a position in the cast (via name)
  65. -- it will locate member baseName, and start at basename + 1 in the cast
  66.  
  67. on basicNameAnim me, baseName, spr, howMany
  68.   -- we will see if we have a member called baseName
  69.   if the number of member baseName > 0 then
  70.     -- record everything
  71.     set oldPuppet = the puppet of sprite spr
  72.     set oldMember = the castNum of sprite spr
  73.     
  74.     puppetSound "button noise", TRUE
  75.     -- puppet if we must
  76.     if not(oldPuppet) then
  77.       puppetSprite spr, TRUE
  78.     end if
  79.     
  80.     -- now we animate
  81.     repeat with x = 1 to howMany
  82.       set the member of sprite spr = (the number of member baseName) + x
  83.       updateStage
  84.       wait(simpleDelay)
  85.     end repeat
  86.     
  87.     -- now we are done animating
  88.     if oldPuppet then
  89.       set the castNum of sprite spr = oldMember
  90.     else
  91.       puppetSprite spr, FALSE
  92.     end if
  93.     
  94.     unloadCast (me)
  95.     return 1
  96.   else
  97.     unloadCast (me)
  98.     return 0
  99.   end if
  100. end
  101.  
  102.  
  103. -- this will animate a given sprite, based on a position in the cast (via name)
  104. -- it will locate member baseName, and start at basename + 1 in the cast
  105. -- this version does not play a sound.
  106.  
  107. on basicNameAnimSilent me, baseName, spr, howMany
  108.   -- we will see if we have a member called baseName
  109.   if the number of member baseName > 0 then
  110.     -- record everything
  111.     set oldPuppet = the puppet of sprite spr
  112.     set oldMember = the castNum of sprite spr
  113.     
  114.     -- now we animate
  115.     repeat with x = 1 to howMany
  116.       set the member of sprite spr = (the number of member baseName) + x
  117.       updateStage
  118.       wait(simpleDelay)
  119.     end repeat
  120.     
  121.     -- now we are done animating
  122.     if oldPuppet then
  123.       set the castNum of sprite spr = oldMember
  124.     else
  125.       puppetSprite spr, FALSE
  126.     end if
  127.     
  128.     unloadCast (me)
  129.     return 1
  130.   else
  131.     unloadCast (me)
  132.     return 0
  133.   end if
  134. end
  135.